home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / docs / User home directories < prev   
Encoding:
Text File  |  1997-10-08  |  881 b   |  31 lines

  1. qmail was designed with security in mind and is paranoid. It will not deliver
  2. mail to a user who has a home directory which is group or world writable or
  3. is owned by another user. The same goes for .qmail files.
  4.  
  5. To fix permission problems (replace "foobar" with the name of the file or
  6. directory):
  7.  
  8. With a recent version of C:Protect:
  9. Protect foobar GROUPFLAGS -WD OTHERFLAGS -WD
  10.  
  11. With GNU fileutils:
  12. chmod og-w foobar
  13.  
  14. With just the "utils" drawer utilities:
  15. minichmod 00Fxy foobar
  16.  
  17. where x,y should be 0, 2, 8 or A, depending on how much access you'd like
  18. other users to have.
  19.  
  20. To fix ownership problems:
  21.  
  22. With GNU fileutils:
  23. chown username foobar
  24.  
  25. With just the "utils" drawer utilities:
  26. minichown username foobar
  27.  
  28. User home directories that reside in the root of a volume are not supported.
  29. If mail for such a user arrives, it will be (attempted) delivered to
  30. alias-username.
  31.